-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
individal admin tweaks for wallet #4386
Conversation
d7c7a9c
to
30dad25
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## develop #4386 +/- ##
===========================================
- Coverage 77.95% 77.67% -0.28%
===========================================
Files 941 942 +1
Lines 44456 44455 -1
===========================================
- Hits 34656 34532 -124
- Misses 9800 9923 +123
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
30dad25
to
4cf7619
Compare
class IndividualDeliveryMechanismDataInline(admin.TabularInline): | ||
model = DeliveryMechanismData | ||
extra = 0 | ||
fields = ("delivery_mechanism_choice", "delivery_mechanism", "data", "is_valid") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delivery_mechanism_choice field is legacy and will be dropped, no need to include it here
model = DeliveryMechanismData | ||
extra = 0 | ||
fields = ("delivery_mechanism_choice", "delivery_mechanism", "data", "is_valid") | ||
readonly_fields = ("delivery_mechanism_choice", "delivery_mechanism", "data", "is_valid") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delivery_mechanism_choice field is legacy and will be dropped, no need to include it here
No description provided.